Skip to content

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented May 1, 2025

This PR contains the following updates:

Package Type Update New value References Sourcegraph
com.eed3si9n:sbt-buildinfo plugin minor 0.13.1 source code search for "com.eed3si9n:sbt-buildinfo"

Test plan: CI should pass with updated dependencies. No review required: this is an automated dependency update PR.


Release Notes

sbt/sbt-buildinfo (com.eed3si9n:sbt-buildinfo)

v0.13.1: 0.13.1

Compare Source

sbt-buildinfo 0.13.1 is cross published to:

sbt Version Published
1.x
2.x

about sbt-buildinfo

sbt-buildinfo is an sbt plugin to generate Scala source from your build definitions.

bug fixes

behind the scene

Full Changelog: sbt/sbt-buildinfo@v0.13.0...v0.13.1

v0.13.0: 0.13.0

Compare Source

sbt-buildinfo 0.13.0 is cross published to:

sbt Version Published
1.x
2.0.0-M2

sbt 2.x migration

updates

Full Changelog: sbt/sbt-buildinfo@v0.12.0...v0.13.0

v0.12.0: 0.12.0

Compare Source

updates

behind the scene

new contributors

Full Changelog: sbt/sbt-buildinfo@v0.11.0...v0.12.0

v0.11.0: 0.11.0

Compare Source

Changes with compatibility implications

sbt-buildinfo 0.11.0 removes import scala.Predef._ from the generated code to fix the compatibility with new Scala 3 syntax.
If import scala.Predef._ is needed, use BuildInfoOption.ImportScalaPredef:

buildInfoOptions += BuildInfoOption.ImportScalaPredef

This was contributed by @​martingd in #​180

Java renderers

sbt-buildinfo 0.11.0 introduces two flavors to Java renders.

buildInfoRenderFactory := JavaSingletonRenderer.apply

This generates Java source code using singleton pattern:

package hello;

/** This file was generated by sbt-buildinfo. */
public final class BuildInfo {
  private BuildInfo() {}

  public static final BuildInfo instance = new BuildInfo();
  /** The value is "helloworld". */
  public final String name = "helloworld";
}
buildInfoRenderFactory := JavaStaticFieldsRenderer.apply

This generates Java source code using static fields:

package hello;

/** This file was generated by sbt-buildinfo. */
public final class BuildInfo {
  private BuildInfo() {}

  /** The value is "helloworld". */
  public static final String name = "helloworld";
}

These were contributed by @​arixmkii in #​167

What's Changed

New Contributors

Full Changelog: sbt/sbt-buildinfo@v0.10.0...v0.11.0


Configuration

📅 Schedule: Branch creation - "on the 1st through 7th day of the month" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the bot label May 1, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants